Accept a word from the user and reverse itΒΆ
Write a python program that accepts a word from the user and reverse it.
word = input("Input a word to reverse: ")
for char in range(len(word) - 1, -1, -1):
print(word[char], end="")
print("\n")
Output:
Input a word to reverse: ecruoser3w
w3resource